home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software of the Month Club 2000 October
/
Software of the Month - Ultimate Collection Shareware 277.iso
/
pc
/
PROGRAMS
/
UTILITY
/
WINLINUX
/
DATA1.CAB
/
bin_-_Main_Executables
/
FALSE
< prev
next >
Wrap
Text File
|
1999-09-17
|
395b
|
25 lines
#!/bin/sh
usage="Usage: $0 [OPTION]...
Exit unsucessfully.
--help display this help and exit
--version output version information and exit
Report bugs to sh-utils-bugs@gnu.ai.mit.edu"
case $# in
1 )
case "z${1}" in
z--help )
echo "$usage"; exit 0 ;;
z--version )
echo "false (GNU sh-utils) 1.16"; exit 0 ;;
* ) ;;
esac
;;
* ) ;;
esac
exit 1